home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / FGETS.C < prev    next >
Text File  |  1991-08-05  |  459b  |  20 lines

  1. /* fgets.c */
  2. #include <stdio.h>
  3. main()
  4. {
  5.     FILE *infile;
  6.     char string[81];
  7.         /* Open the file. Because of the special significance
  8.          * of '\' in C, we need two of them in the path name for
  9.          * autoexec.bat */
  10.     if ((infile = fopen("c:\\autoexec.bat", "r")) == NULL)
  11.     {
  12.         printf("fopen failed.\n");
  13.         exit(0);
  14.     }
  15.     printf ("Contents of c:autoexec.bat:\n");
  16.     while (fgets(string, 80, infile) != NULL)
  17.     {
  18.         fputs(string,stdout);
  19.     }
  20. }